home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-22 | 779 b | 43 lines | [TEXT/KAHL] |
- ///--------------------------------------------------------------------------------------
- // Large Background.h
- //
- // By: Vern Jensen
- ///--------------------------------------------------------------------------------------
-
-
- #ifndef __WINDOWS__
- #include <Windows.h>
- #endif
-
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
-
- void main( void );
- void CreateSpriteWorld( void );
- void CreateSprites( void );
- void SetUpAnimation( void );
-
- void DrawBackground( void );
- void RunAnimation( void );
- void ShutDown( void );
-
- void BallSpriteMoveProc(SpritePtr ballSpriteP);
-
- void KeyScrollRectMoveProc(
- SpriteWorldPtr spriteWorldP,
- SpritePtr followSpriteP);
-
- void AutoScrollMoveProc(
- SpriteWorldPtr spriteWorldP,
- SpritePtr followSpriteP);
-
- void UpdateKeys( void );
-
-
- #ifdef __cplusplus
- }
- #endif
-